In [19]:
import atmospy
print ("atmospy v{}".format(atmospy.__version__))
In [20]:
# Setup an instance of the io.SMPS class
raw = atmospy.io.SMPS()
# Load the file of choice
%time raw.load("../tests/data/SMPS_Number.txt")
In [21]:
%time d = atmospy.aerosols.ParticleDistribution(histogram = raw.histogram, bins = raw.bins)
%time d.compute()
%time d.statistics()
In [24]:
d.stats['Number'].head()
Out[24]:
In [25]:
d.data['dN'].head()
Out[25]:
In [27]:
d.meta.head()
Out[27]:
In [ ]: